# coding; utf-8
        #Change Tuple Values update tuple
        
        x = ("apple", "banana", "cherry")
        y = list(x)
        y[1] = "kiwi"
        x = tuple(y)
        print(x)
        
        thistuple = ("apple", "banana", "cherry")
        y = list(thistuple)
        y.append("orange")
        thistuple = tuple(y)
        print(thistuple)
        
        y = ("pear",)
        thistuple += y
        
        print(thistuple)